home *** CD-ROM | disk | FTP | other *** search
- #!/bin/sh
- # preinstall (copy of preupgrade)
- ucontrol=/Library/StartupItems/uControl/uControl
- $ucontrol stop
-
- oldpref=/Library/PreferencePanes/uControlPanel.prefPane
- newpref=/Library/PreferencePanes/uControl.prefPane
-
- #cat <<EOF | osascript
- # tell application "System Preferences"
- # quit
- # end tell
- #EOF
-
- for pref in $oldpref $newpref; do
- if [ -e "$pref" ]; then
- rm -rf "$pref"
- fi
- done
-
- if [ -e "$ucontrol" ]; then
- $ucontrol uninstall
- fi
- exit 0
-